python print

25

print('What is your first name')
print ("put your words here")
print("Python is fun.")

a = 5
# Two objects are passed
print("a =", a)

b = a
# Three objects are passed
print('a =', a, '= b')

Comments

Submit
0 Comments